Pages: [1] 2 |
1. sde-20170330-TRANQUILITY conversion - in EVE Technology Lab [original thread]
Much appreciated!
- by Kelath Erebus - at 2017.03.31 16:49:14
|
2. Sticky:Devsite blog: Introducing the ESI API - in EVE Technology Lab [original thread]
Hoping to get an actual dev to confirm this, because so far the only people who answer the question have been other players (unless another player has a link to a dev post that says as such)... When I tell others they seem clueless and ask for a d...
- by Kelath Erebus - at 2017.03.27 23:15:11
|
3. ESI - Two End-Point Questions - in EVE Technology Lab [original thread]
Found these entries for the "online" end-point: https://github.com/ccpgames/esi-issues/issues/52
https://github.com/ccpgames/esi-issues/issues/10
That's hopeful
- by Kelath Erebus - at 2017.03.22 04:28:07
|
4. ESI - Two End-Point Questions - in EVE Technology Lab [original thread]
David Davaham wrote: 1) Still unknown. The last update was as of mid-January - https://github.com/ccpgames/esi-issues/issues/26
2) That endpoint will never exists. Atleast not with that much data in it. I think I remember seeing a request ...
- by Kelath Erebus - at 2017.03.22 04:26:34
|
5. ESI - Two End-Point Questions - in EVE Technology Lab [original thread]
Hello, Hope a dev might be able to answer the following, or anyone else who might know, basically to determine if I should continue looking into ESI right now or wait until it matures as I know its only a few months old: First, I was just curiou...
- by Kelath Erebus - at 2017.03.22 01:08:42
|
6. ESI - Scope Questions - in EVE Technology Lab [original thread]
Quote: I don't think you get how it works. Star Lord would have to login with the assets scope and auth that. Then if later on he wants industry jobs (no esi endpoint for that yet i think) he would have to login with BOTH the industry jobs AND ...
- by Kelath Erebus - at 2017.03.17 23:35:10
|
7. ESI - Scope Questions - in EVE Technology Lab [original thread]
Quote: 3) no. Each token has a specific set of scopes. once it's created, it can't be changed. So if Star Lord first approves a token for a scope regarding Inventory. Then Star Lord approves a token for a scope regarding Industry Jobs. Can ...
- by Kelath Erebus - at 2017.03.17 22:40:27
|
8. ESI - Scope Questions - in EVE Technology Lab [original thread]
Hoping someone might have answers to these questions, they are all related, I just broke them down for clarity: 1) Can you ask for additional scope rights? For instance, say Star Lord goes to your website/app and is redirected to SSO, however you...
- by Kelath Erebus - at 2017.03.17 16:09:22
|
9. ESI - End Point Request - in EVE Technology Lab [original thread]
Okay... I'm going to answer based on data collected when my corp was active and using its recruitment application, which was pretty robust... Quote: Knowing alt characters on an account that are likely _never used_ does not give you any insigh...
- by Kelath Erebus - at 2017.03.17 15:46:17
|
10. ESI - End Point Request - in EVE Technology Lab [original thread]
Suppose it isn't the end of the world, it removes the easiest/laziest way to root out bad characters as the guy I was chatting with mentioned. So ya plan B... Unfortunately that probably means no longer helping new pilots since they could be a qu...
- by Kelath Erebus - at 2017.03.17 04:28:41
|
11. ESI - End Point Request - in EVE Technology Lab [original thread]
Ya I posted about the issue with not having "/account/Characters.xml.aspx" available and was instantly shot down being said all account level data is stripped from the API saying its not open to discussion. I don't understand how it can not be ope...
- by Kelath Erebus - at 2017.03.17 02:10:54
|
12. ESI - End Point Request - in EVE Technology Lab [original thread]
Quote: The first one won't ever happen. CCP stated that they won't do something like the accounts XML endpoint for ESI. So each player would have to log in with all the characters on each account one by one. I remember reading this but not wher...
- by Kelath Erebus - at 2017.03.17 01:45:26
|
13. ESI - End Point Request - in EVE Technology Lab [original thread]
The new API is looking good, however there are some what I would consider critical end-points missing from a corporate stand point. AND I know everything will eventually be replicated with ESI based on the blog back in November before CREST and th...
- by Kelath Erebus - at 2017.03.16 19:40:51
|
14. CREST /wars/ issue, maybe, maybe its a feature... - in EVE Technology Lab [original thread]
Hello, So I'm using the following code: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://crest-tq.eveonline.com/wars/'); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch);...
- by Kelath Erebus - at 2016.05.04 17:42:34
|
15. invtypes missing types - in EVE Technology Lab [original thread]
I dropped the old tables this time and now it's showing properly, thanks!
- by Kelath Erebus - at 2016.04.29 14:45:42
|
16. invtypes missing types - in EVE Technology Lab [original thread]
Hello, Is there a better dtata dump, I downloaded "sde-20160427-TRANQUILITY.sql" yesterday from https://www.fuzzwork.co.uk/dump/ (linked from developers.eveonline.com) but it's missing a couple types including: X5 Enduring Stasis Webifier Anyo...
- by Kelath Erebus - at 2016.04.28 20:02:10
|
17. CREST (PHP/Curl) Help! - in EVE Technology Lab [original thread]
Last couple and I think you can figure out the rest: Character Location: $header = 'Authorization: Bearer ' . Sessions::$aSession['authToken']; $ch = curl_init(); ...
- by Kelath Erebus - at 2016.02.02 08:38:05
|
18. CREST (PHP/Curl) Help! - in EVE Technology Lab [original thread]
For reference for others: This is how to pull character fittings, keep in mind this is as basic as it goes... $header = 'Authorization: Bearer ' . Sessions::$aSession['authToken']; &n...
- by Kelath Erebus - at 2016.02.02 08:24:27
|
19. CREST (PHP/Curl) Help! - in EVE Technology Lab [original thread]
Update: The following works: $header = 'Authorization: Bearer ' . Sessions::$aSession['authToken']; $ch = curl_init(); curl_setopt($ch...
- by Kelath Erebus - at 2016.02.02 08:21:08
|
20. CREST (PHP/Curl) Help! - in EVE Technology Lab [original thread]
Evening, Okay, this is driving me absolutely up the wall... I'm trying to start basic before looking into pulling character location information... Here is my code: $header = 'Content-Type: application/vnd....
- by Kelath Erebus - at 2016.02.02 07:10:23
|
Pages: [1] 2 |
First page | Previous page | Next page | Last page |